1. /* sioremdb.cpp by K.Tsuru */
  2. // function ID = 407 BRADIX
  3. /***************************************
  4. SInteger class
  5. It provides the remainder operation m%n.
  6. It converts "n" to an integer.
  7. ****************************************/
  8. #ifndef SN_H
  9. #include "sn.h"
  10. #endif
  11. SInteger operator%(const SInteger& m, double n){
  12. SInteger d(n);
  13. Ldiv_t r;
  14. IIDiv(m, d, r, 1);
  15. return r.rem;
  16. }

sioremdb.cpp : last modifiled at 2015/12/14 20:13:54(396 bytes)
created at 2016/04/25 14:53:17
The creation time of this html file is 2017/10/25 11:09:45 (Wed Oct 25 11:09:45 2017).